home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / rjs.lha / RJS / String / tests / tbetween.C < prev    next >
C/C++ Source or Header  |  1991-06-14  |  201b  |  18 lines

  1. #include "test.h"
  2.  
  3. #include "test.h"
  4.  
  5.  
  6. void left_right_between()
  7. {
  8. String s1="Yes this a string";
  9.  
  10. Assert(s1.between(4,7)=="this");
  11. Assert(s1.between(-223,7)=="");
  12. Assert(s1.between(40,79)=="");
  13.  
  14. }
  15.  
  16.  
  17.  
  18.